Samba Winbind
2016/06/28 |
Join in Windows Active Directory Domain with Samba Winbind.
This tutorial needs Windows Active Directory Domain Service in your LAN. This example shows to configure on the environment below.
|
|||||||||
[1] | Install Winbind. |
[root@smb ~]# dnf -y install samba-winbind samba-winbind-clients pam_krb5
|
[2] | Configure Winbind. |
# change DNS setting to AD's one [root@smb ~]# nmcli c mod ens3 ipv4.dns 10.0.0.100 [root@smb ~]# nmcli c down ens3; nmcli c up ens3
authconfig \ --enablekrb5 \ --krb5kdc=fd3s.srv.world \ --krb5adminserver=fd3s.srv.world \ --krb5realm=SRV.WORLD \ --enablewinbind \ --enablewinbindauth \ --smbsecurity=ads \ --smbrealm=SRV.WORLD \ --smbservers=fd3s.srv.world \ --smbworkgroup=FD3S01 \ --winbindtemplatehomedir=/home/%U \ --winbindtemplateshell=/bin/bash \ --enablemkhomedir \ --enablewinbindusedefaultdomain \ --update Job for winbind.service failed because the control process exited with error code. See "systemctl status winbind.service" and "journalctl -xe" for details. # Dont's care the error above (winbind does not start before joining Domain) |
[3] | Join in Active Directory. |
# join in Active Directory ( net ads join -U [AD's admin user]) [root@smb ~]# net ads join -U Administrator Enter Serverworld's password: ldb: unable to stat module /usr/lib64/samba/ldb : No such file or directory Using short domain name -- FD3S01 Joined 'SMB' to dns domain 'srv.world' No DNS domain configured for smb. Unable to perform DNS Update. DNS update failed: NT_STATUS_INVALID_PARAMETER # show domain info [root@smb ~]# net ads info LDAP server: 10.0.0.100 LDAP server name: FD3S.srv.world Realm: SRV.WORLD Bind Path: dc=SRV,dc=WORLD LDAP port: 389 Server time: Wed, 29 Jun 2016 15:51:00 JST KDC server: 10.0.0.100 Server time offset: -1 Last machine account password change: Wed, 29 Jun 2016 19:48:00 JST # show domain users [root@smb ~]# wbinfo -u administrator guest serverworld krbtgt # verify to switch to an AD user [root@smb ~]# su - Serverworld Creating directory '/home/serverworld'. [serverworld@smb ~]$ |